home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Gamer (Italian) 45
/
PC Gamer IT CD 45 2-2.iso
/
addons
/
service_pack_w98_ita
/
ie401.sp2
/
ieak4.cab
/
random.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1998-03-09
|
301b
|
11 lines
#include <stdlib.h>
#include <ctype.h>
#include "random.h"
//Select a random number generator not known by outsiders
//Anyone who knows the random number generator can guess the
//session handles of the serer and violate he security.
UINT random(UINT seed)
{
srand(seed);
return rand();
}